type runtime/pprof.stackProfile

5 uses

	runtime/pprof (current package)
		pprof.go#L354: 	return printCountProfile(w, debug, p.name, stackProfile(all))
		pprof.go#L357: type stackProfile [][]uintptr
		pprof.go#L359: func (x stackProfile) Len() int              { return len(x) }
		pprof.go#L360: func (x stackProfile) Stack(i int) []uintptr { return x[i] }
		pprof.go#L361: func (x stackProfile) Label(i int) *labelMap { return nil }